home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d8 / panal20c.arc / INSTALL.BAT < prev    next >
DOS Batch File  |  1990-10-04  |  1KB  |  53 lines

  1. echo off
  2. cls
  3. echo             PORTFOLIO ANALYST Demonstration Installation
  4. echo.
  5. echo.
  6. if "%1" == "" goto NoPath
  7. echo Ready to install on your hard disk. Press ^C to abort or
  8. pause
  9. echo.
  10. echo Attempting to create \STOCK directory on your hard disk. If this
  11. echo directory already exists, DOS will issue an error message, but you
  12. echo can ignore the message.
  13. echo .
  14. md %1\STOCK
  15. copy A:*.* %1\STOCK
  16. rem if errorlevel 1 goto error
  17. cls
  18. echo.
  19. echo   Please insert second diskette in drive A:
  20. pause
  21. copy A:*.* %1\STOCK
  22. rem if errorlevel 1 goto error
  23. :Finished
  24. echo.
  25. echo Installation of the demo(s) is complete! 
  26. echo.
  27. echo Type "PA" in directory \STOCK on installed drive
  28. goto end
  29. :error
  30. echo                            **** E R R O R ****
  31. echo.
  32. echo     An error occurred during the installation. Most likely, your
  33. echo     hard disk is full. Please correct the problem and run the INSTALL
  34. echo     batch file again.
  35. echo.
  36. goto end
  37. :NoPath
  38. echo.
  39. echo     Insert the demonstration diskette in drive A: and close the
  40. echo     latch. Next, log onto drive A: by typing 'A:' followed by [Enter].
  41. echo.
  42. echo.
  43. echo     Syntax:   INSTALL Drive:
  44. echo.
  45. echo     Where 'Drive:' is the drive letter of the hard disk
  46. echo     drive where you wish to install this product.
  47. echo.
  48. echo        Example - To install on drive C:, you would
  49. echo                  type the following:
  50. echo.
  51. echo                 INSTALL C:
  52. :end
  53.